home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1994 October / Macformat17.cdr / Shareware City / HyperCard / hyper-extras-hc / HyperExtras / HyperExtras.rsrc / TEXT_3003_btnCount.txt < prev    next >
Encoding:
Text File  |  1994-07-11  |  622 b   |  17 lines

  1. global HEXinfo
  2.   if the shiftKey is up then HEXquest
  3.   put empty into HEXinfo
  4.   repeat with x=1 to the number of cd btns
  5.     set cursor to busy
  6.     put short name of btn x into name
  7.     put id of btn x into btnID
  8.     put rect of btn x into btnRect
  9.     put visible of btn x into visB
  10.     put style of btn x into style
  11.     put autoHilite of btn x into hi
  12.     put icon of btn x into ic
  13.     put showName of btn x into showN
  14.     put "BTN "&x&":"&&"ID"&btnID&" *NAME:"&name&" *RECT:"&btnRect&¬¨
  15.     " *VISIBLE:"&visB&" *STYLE:"&style&" *AUTOHILITE:"&hi&¬¨
  16.     " *ICON:"&ic&" *SHOWNAME:"&showN into line x of HEXinfo
  17.   end repeat